home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / bzero.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-19  |  100 b   |  8 lines

  1. #include "amiga.h"
  2. #include <string.h>
  3.  
  4. void bzero(char *b, int length)
  5. {
  6.   memset(b, 0, length);
  7. }
  8.